curl --request POST \
--url https://prod01-apigw.{customer_name}.fabric.zone/api-cart/bill-to/cart/{cartId} \
--header 'Content-Type: application/json' \
--data '
{
"paymentMethod": "Visa Credit",
"cardIdentifier": "1234",
"amount": 149.99,
"address": {
"street1": "123 Main Street",
"city": "Seattle",
"state": "WA",
"country": "United States of America",
"zipCode": "10008-1234",
"name": {
"first": "John",
"last": "Smith"
},
"email": "johnsmith@fabric.inc",
"attention": "Leave at the back door.",
"street2": "ABC Boulevard",
"kind": "TBD"
}
}
'